thunk

Submit a Thunk to a Bloc to be run. The thunk will receive the dispatch and the getState function but no action (since it was triggered "manually", not by sending an action to the Bloc). The dispatch function dispatches to the first matching thunk/reducer/side-effect in the Bloc.


@JvmName(name = "BlocThunkSimplified")
fun <State : Any, Action : Any, SideEffect : Any> Bloc<State, Action, SideEffect>.thunk(thunk: ThunkNoAction<State, Action, State>)

Submit a Thunk to a Bloc to be run. Simplified version with Proposal = State.


Submit a Thunk to a BlocOwner/Bloc to be run. The thunk will receive the dispatch and the getState function but no action (since it was triggered "manually", not by sending an action to the Bloc). The dispatch function dispatches to the first matching thunk/reducer/side-effect in the Bloc.


@JvmName(name = "BlocOwnerThunkSimplified")
fun <State : Any, Action : Any, SideEffect : Any> BlocOwner<State, Action, SideEffect, State>.thunk(thunk: ThunkNoAction<State, Action, State>)

Submit a Thunk to a BlocOwner/Bloc to be run. Simplified version with Proposal = State.